700
|
Is it possible to colour a particular column for specified values

With Exgantt1
.BeginUpdate()
With .ConditionalFormats.Add("int(%1) in (3,4,5)")
.BackColor = Color.FromArgb(255,0,0)
.ApplyTo = &H1
End With
.MarkSearchColumn = False
With .Columns
.Add("Column 1")
.Add("Column 2")
End With
With .Items
.set_CellCaption(.AddItem(0),1,1)
.set_CellCaption(.AddItem(2),1,3)
.set_CellCaption(.AddItem(4),1,5)
End With
.EndUpdate()
End With
|
699
|
Is it possible to colour a particular column

With Exgantt1
.BeginUpdate()
.MarkSearchColumn = False
With .Columns
.Add("Column 1")
.Add("Column 2").set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellBackColor,255)
End With
With .Items
.set_CellCaption(.AddItem(0),1,1)
.set_CellCaption(.AddItem(2),1,3)
.set_CellCaption(.AddItem(4),1,5)
End With
.EndUpdate()
End With
|
698
|
How do i get all the children items that are under a certain parent Item handle
Dim h,hChild
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("P")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.set_ExpandItem(h,True)
End With
With .Items
hChild = .get_ItemChild(.FirstVisibleItem)
Debug.Print( .get_CellCaption(hChild,0) )
Debug.Print( .get_CellCaption(.get_NextSiblingItem(hChild),0) )
End With
.EndUpdate()
End With
|
697
|
How can I change the predefined labels being displayed in the chart's header so it shows the data in short format with no literals

With Exgantt1
.BeginUpdate()
With .Chart
.set_PaneWidth(False,0)
.LevelCount = 3
.OverviewVisible = exontrol.EXGANTTLib.OverviewVisibleEnum.exOverviewShowAll
.AllowOverviewZoom = exontrol.EXGANTTLib.OverviewZoomEnum.exAlwaysZoom
.set_Label(exontrol.EXGANTTLib.UnitEnum.exYear,"<%yy%><|><%yyyy%>")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exHalfYear,"")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exQuarterYear,"")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exMonth,"<|><%m%><|><%m%>/<%yy%><|><%m%>/<%yyyy%>")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exThirdMonth,"")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exWeek,"<|><%ww%><|><%m%>/<%d%>/<%yy%><r><%ww%><|><%m%>/<%d%>/<%yyyy%><r><%ww%><||><||>256")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exDay,"<|><%d%><|><%m%>/<%d%>/<%yy%><|><%m%>/<%d%>/<%yyyy%><||><||>4096")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exHour,"<|><%hh%><|><%m%>/<%d%>/<%yy%> <%h%> <%AM/PM%><|><%m%>/<%d%>/<%yyyy%> <%h%> <%AM/PM%><||><||>65536")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exMinute,"<|><%nn%><|><%h%>:<%nn% <%AM/PM%>><|><%m%>/<%d%>/<%yy%> <%h%>:<%nn%> <%AM/PM%><|><%m%>/<%d%>/<%yyyy%> <%h%>:<%nn%> <%AM/PM%>")
.set_Label(exontrol.EXGANTTLib.UnitEnum.exSecond,"<|><%ss%><|><%nn%>:<%ss%><|><%h%>:<%nn%>:<%ss%> <%AM/PM%><|><%m%>/<%d%>/<%yy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%><|><%m%>/<%d%>/<%yy" & _
"yy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%>")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exYear,"<%yyyy%>")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exHalfYear,"")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exQuarterYear,"")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exMonth,"<%m%>/<%yyyy%>")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exThirdMonth,"")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exWeek,"<%m%>/<%d%>/<%yyyy%> <%ww%>")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exDay,"<%m%>/<%d%>/<%yyyy%>")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exHour,"<%m%>/<%d%>/<%yyyy%> <%h%> <%AM/PM%>")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exMinute,"<%m%>/<%d%>/<%yyyy%> <%h%>:<%nn%> <%AM/PM%>")
.set_LabelToolTip(exontrol.EXGANTTLib.UnitEnum.exSecond,"<%m%>/<%d%>/<%yyyy%> <%h%>:<%nn%>:<%ss%> <%AM/PM%>")
.UnitScale = exontrol.EXGANTTLib.UnitEnum.exDay
End With
.EndUpdate()
End With
|
696
|
How can I get the caption of focused item
' SelectionChanged event - Fired after a new item has been selected.
Private Sub Exgantt1_SelectionChanged(ByVal sender As System.Object) Handles Exgantt1.SelectionChanged
With Exgantt1
With .Items
Debug.Print( "Handle" )
Debug.Print( .FocusItem )
Debug.Print( "Caption" )
Debug.Print( .get_CellCaption(.FocusItem,0) )
End With
End With
End Sub
Dim h
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("Items")
With .Items
h = .AddItem("R1")
.InsertItem(h,Nothing,"Cell 1.1")
.InsertItem(h,Nothing,"Cell 1.2")
.set_ExpandItem(h,True)
h = .AddItem("R2")
.InsertItem(h,Nothing,"Cell 2.1")
.InsertItem(h,Nothing,"Cell 2.2")
.set_ExpandItem(h,True)
End With
.EndUpdate()
End With
|
695
|
How can I get the caption of selected item
' SelectionChanged event - Fired after a new item has been selected.
Private Sub Exgantt1_SelectionChanged(ByVal sender As System.Object) Handles Exgantt1.SelectionChanged
With Exgantt1
With .Items
Debug.Print( "Handle" )
Debug.Print( .get_SelectedItem(0) )
Debug.Print( "Caption" )
Debug.Print( .get_CellCaption(.get_SelectedItem(0),0) )
End With
End With
End Sub
Dim h
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("Items")
With .Items
h = .AddItem("R1")
.InsertItem(h,Nothing,"Cell 1.1")
.InsertItem(h,Nothing,"Cell 1.2")
.set_ExpandItem(h,True)
h = .AddItem("R2")
.InsertItem(h,Nothing,"Cell 2.1")
.InsertItem(h,Nothing,"Cell 2.2")
.set_ExpandItem(h,True)
End With
.EndUpdate()
End With
|
694
|
How can I highligth the item from the cursor as it moves
' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
Dim c,h,hit
With Exgantt1
.BeginUpdate()
h = .get_ItemFromPoint(-1,-1,c,hit)
With .Items
.ClearItemBackColor(Exgantt1.get_Background(&H200 Or exontrol.EXGANTTLib.BackgroundPartEnum.exHSRight Or exontrol.EXGANTTLib.BackgroundPartEnum.exListOLEDropPosition))
.set_ItemBackColor(h,Color.FromArgb(240,250,240))
End With
.set_Background(&H200 Or exontrol.EXGANTTLib.BackgroundPartEnum.exHSRight Or exontrol.EXGANTTLib.BackgroundPartEnum.exListOLEDropPosition,h)
.EndUpdate()
End With
End Sub
Dim h
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exHLines
.SelBackColor = Color.FromArgb(240,250,240)
.SelForeColor = Color.FromArgb(0,0,0)
.ShowFocusRect = False
With .Chart
.SelBackColor = Color.FromArgb(240,250,240)
End With
.Columns.Add("Items")
With .Items
h = .AddItem("R1")
.InsertItem(h,Nothing,"Cell 1.1")
.InsertItem(h,Nothing,"Cell 1.2")
.set_ExpandItem(h,True)
h = .AddItem("R2")
.InsertItem(h,Nothing,"Cell 2.1")
.InsertItem(h,Nothing,"Cell 2.2")
.set_ExpandItem(h,True)
End With
.EndUpdate()
End With
|
693
|
How can I get the item from the cursor
' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
Dim c,h,hit
With Exgantt1
h = .get_ItemFromPoint(-1,-1,c,hit)
Debug.Print( "Handle" )
Debug.Print( h )
Debug.Print( "Index" )
Debug.Print( .Items.get_ItemToIndex(h) )
End With
End Sub
Dim h
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exHLines
.Columns.Add("Items")
With .Items
h = .AddItem("R1")
.InsertItem(h,Nothing,"Cell 1.1")
.InsertItem(h,Nothing,"Cell 1.2")
.set_ExpandItem(h,True)
h = .AddItem("R2")
.InsertItem(h,Nothing,"Cell 2.1")
.InsertItem(h,Nothing,"Cell 2.2")
.set_ExpandItem(h,True)
End With
.EndUpdate()
End With
|
692
|
How can I get the column from the cursor, not only in the header
' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
With Exgantt1
Debug.Print( .get_ColumnFromPoint(-1,0) )
End With
End Sub
Dim h
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("P1")
.Columns.Add("P2")
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
With .Items
h = .AddItem("R1")
.set_CellCaption(h,1,"R2")
.set_CellCaption(.InsertItem(h,Nothing,"Cell 1.1"),1,"Cell 1.2")
.set_CellCaption(.InsertItem(h,Nothing,"Cell 2.1"),1,"Cell 2.2")
.set_ExpandItem(h,True)
End With
.EndUpdate()
End With
|
691
|
How can I get the column from the cursor
' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
With Exgantt1
Debug.Print( .get_ColumnFromPoint(-1,-1) )
End With
End Sub
Dim h
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.Columns.Add("P1")
.Columns.Add("P2")
With .Items
h = .AddItem("R1")
.set_CellCaption(h,1,"R2")
.set_CellCaption(.InsertItem(h,Nothing,"Cell 1.1"),1,"Cell 1.2")
.set_CellCaption(.InsertItem(h,Nothing,"Cell 2.1"),1,"Cell 2.2")
.set_ExpandItem(h,True)
End With
.EndUpdate()
End With
|
690
|
How can I get the cell's caption from the cursor
' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
Dim c,h,hit
With Exgantt1
h = .get_ItemFromPoint(-1,-1,c,hit)
Debug.Print( .Items.get_CellCaption(h,c) )
End With
End Sub
Dim h
With Exgantt1
.BeginUpdate()
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("Items")
With .Items
h = .AddItem("R1")
.InsertItem(h,Nothing,"Cell 1.1")
.InsertItem(h,Nothing,"Cell 1.2")
.set_ExpandItem(h,True)
h = .AddItem("R2")
.InsertItem(h,Nothing,"Cell 2.1")
.InsertItem(h,Nothing,"Cell 2.2")
.set_ExpandItem(h,True)
End With
.EndUpdate()
End With
|
689
|
Is it possible to change the style for the vertical or horizontal grid lines, in the list area

Dim h
With Exgantt1
.BeginUpdate()
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.GridLineStyle = exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesVSolid Or exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesHDot4
.Columns.Add("C1")
.Columns.Add("C2")
.Columns.Add("C3")
With .Items
h = .AddItem("Item 1")
.set_CellCaption(h,1,"SubItem 1.2")
.set_CellCaption(h,2,"SubItem 1.3")
h = .AddItem("Item 2")
.set_CellCaption(h,1,"SubItem 2.2")
.set_CellCaption(h,2,"SubItem 2.3")
End With
.EndUpdate()
End With
|
688
|
How can I show the bars over the grid lines, i.e. so you cannot see the grid lines 'through' the bar

Dim h
With Exgantt1
.BeginUpdate()
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.GridLineColor = Color.FromArgb(220,220,220)
With .Chart
.set_PaneWidth(False,48)
.FirstVisibleDate = #1/1/2001#
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.GridLineStyle = exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesBehind
.LevelCount = 2
With .get_Level(1)
.DrawGridLines = True
.GridLineColor = Color.FromArgb(220,220,220)
End With
With .Bars.Item("Task")
.Pattern = exontrol.EXGANTTLib.PatternEnum.exPatternSolid
.Height = 14
End With
End With
.Columns.Add("Column")
With .Items
h = .AddItem("Item 1")
.AddBar(h,"Task",#1/2/2001#,#1/5/2001#,"A")
.AddBar(h,"Task",#1/8/2001#,#1/15/2001#,"B")
End With
.EndUpdate()
End With
|
687
|
Is it possible to change the style for the vertical grid lines, in the chart area only

Dim h
With Exgantt1
.BeginUpdate()
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.GridLineStyle = exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesDash
With .Chart
.set_PaneWidth(False,48)
.FirstVisibleDate = #1/1/2001#
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.GridLineStyle = exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesDash
.LevelCount = 2
.get_Level(1).DrawGridLines = True
With .get_Level(0)
.GridLineColor = Color.FromArgb(255,0,0)
.GridLineStyle = exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesVSolid
End With
.Bars.Item("Task").Pattern = exontrol.EXGANTTLib.PatternEnum.exPatternSolid
End With
.Columns.Add("Column")
With .Items
h = .AddItem("Item 1")
.AddBar(h,"Task",#1/2/2001#,#1/5/2001#,"A")
.AddBar(h,"Task",#1/8/2001#,#1/15/2001#,"B")
End With
.EndUpdate()
End With
|
686
|
Is it possible to change the style for the grid lines, for instance to be solid not dotted

Dim h
With Exgantt1
.BeginUpdate()
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.GridLineStyle = exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesSolid
With .Chart
.set_PaneWidth(False,48)
.FirstVisibleDate = #1/1/2001#
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.GridLineStyle = exontrol.EXGANTTLib.GridLinesStyleEnum.exGridLinesSolid
.LevelCount = 2
.get_Level(1).DrawGridLines = True
.Bars.Item("Task").Pattern = exontrol.EXGANTTLib.PatternEnum.exPatternSolid
End With
.Columns.Add("Column")
With .Items
h = .AddItem("Item 1")
.AddBar(h,"Task",#1/2/2001#,#1/5/2001#,"A")
.AddBar(h,"Task",#1/8/2001#,#1/15/2001#,"B")
End With
.EndUpdate()
End With
|
685
|
How can I show the grid lines for the chart and list area

Dim h
With Exgantt1
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
With .Chart
.set_PaneWidth(False,48)
.FirstVisibleDate = #1/1/2001#
.DrawGridLines = exontrol.EXGANTTLib.GridLinesEnum.exAllLines
.LevelCount = 2
.get_Level(1).DrawGridLines = True
.Bars.Item("Task").Pattern = exontrol.EXGANTTLib.PatternEnum.exPatternSolid
End With
.Columns.Add("Column")
With .Items
h = .AddItem("Item 1")
.AddBar(h,"Task",#1/2/2001#,#1/5/2001#,"A")
.AddBar(h,"Task",#1/8/2001#,#1/15/2001#,"B")
End With
End With
|
684
|
How can I get the link from the point

' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
With Exgantt1
Debug.Print( .Chart.get_LinkFromPoint(-1,-1) )
End With
End Sub
Dim h1,h2,h3
With Exgantt1
.BeginUpdate()
.Columns.Add("Task")
With .Chart
.FirstVisibleDate = #12/29/2000#
.set_PaneWidth(False,64)
.LevelCount = 2
End With
With .Items
h1 = .AddItem("Task 1")
.AddBar(h1,"Task",#1/2/2001#,#1/4/2001#,"K1")
h2 = .AddItem("Task 2")
.AddBar(h2,"Task",#1/5/2001#,#1/7/2001#,"K2")
.AddLink("L1",h1,"K1",h2,"K2")
.set_Link("L1",exontrol.EXGANTTLib.LinkPropertyEnum.exLinkText,"L1")
h3 = .AddItem("Task 3")
.AddBar(h3,"Task",#1/8/2001#,#1/10/2001#,"K3")
.AddLink("L2",h2,"K2",h3,"K3")
.set_Link("L2",exontrol.EXGANTTLib.LinkPropertyEnum.exLinkText,"L2")
End With
.EndUpdate()
End With
|
683
|
How can I get the bar from the point

' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
With Exgantt1
Debug.Print( .Chart.get_BarFromPoint(-1,-1) )
End With
End Sub
Dim h1,h2,h3
With Exgantt1
.BeginUpdate()
.Columns.Add("Task")
With .Chart
.FirstVisibleDate = #12/29/2000#
.set_PaneWidth(False,64)
.LevelCount = 2
End With
With .Items
h1 = .AddItem("Task 1")
.AddBar(h1,"Task",#1/2/2001#,#1/4/2001#,"K1")
h2 = .AddItem("Task 2")
.AddBar(h2,"Task",#1/4/2001#,#1/6/2001#,"K2")
.AddLink("L1",h1,"K1",h2,"K2")
h3 = .AddItem("Task 3")
.AddBar(h3,"Task",#1/8/2001#,#1/10/2001#,"K3")
.AddLink("L2",h2,"K2",h3,"K3")
End With
.EndUpdate()
End With
|
682
|
How can I get the level from the cursor

' MouseMove event - Occurs when the user moves the mouse.
Private Sub Exgantt1_MouseMoveEvent(ByVal sender As System.Object,ByVal Button As Short,ByVal Shift As Short,ByVal X As Integer,ByVal Y As Integer) Handles Exgantt1.MouseMoveEvent
With Exgantt1
Debug.Print( .Chart.get_LevelFromPoint(-1,-1) )
End With
End Sub
With Exgantt1
With .Chart
.FirstVisibleDate = #6/25/2010#
.set_PaneWidth(False,0)
.LevelCount = 4
End With
End With
|
681
|
I display numbers in my chart, but the AddBar requires a date how can I add a bar

With Exgantt1
.BeginUpdate()
.Columns.Add("Tasks")
With .Chart
.set_PaneWidth(False,0)
.NonworkingDays = 0
.FirstVisibleDate = 0
.ToolTip = ""
With .get_Level(0)
.Label = "<%i%>"
.ToolTip = ""
End With
.UnitWidth = 24
End With
With .Items
.AddBar(.AddItem("Task 1"),"Task",2,4)
.AddBar(.AddItem("Task 2"),"Task",6,10)
End With
.EndUpdate()
End With
|
680
|
I display numbers in the chart's header but do not want to get displayed negative numbers. How can i do that

' DateChange event - Occurs when the first visible date is changed.
Private Sub Exgantt1_DateChange(ByVal sender As System.Object) Handles Exgantt1.DateChange
With Exgantt1
.Chart.FirstVisibleDate = 0
.set_ScrollPartEnable(exontrol.EXGANTTLib.ScrollBarEnum.exHChartScroll,exontrol.EXGANTTLib.ScrollPartEnum.exLeftBPart,False)
End With
End Sub
With Exgantt1
.BeginUpdate()
With .Chart
.set_PaneWidth(False,0)
.NonworkingDays = 0
.FirstVisibleDate = 0
.ToolTip = ""
With .get_Level(0)
.Label = "<%i%>"
.ToolTip = "<%i%>"
End With
.UnitWidth = 24
End With
.EndUpdate()
End With
|
679
|
How can I display numbers in the chart's header instead dates

With Exgantt1
.BeginUpdate()
With .Chart
.set_PaneWidth(False,0)
.NonworkingDays = 0
.FirstVisibleDate = 0
.ToolTip = ""
With .get_Level(0)
.Label = "<%i%>"
.ToolTip = ""
End With
.UnitWidth = 24
End With
.EndUpdate()
End With
|
678
|
How can I determine that a certain bar is the topmost

Dim h
With Exgantt1
.Columns.Add("Task")
With .Chart
.set_PaneWidth(False,48)
.FirstVisibleDate = #12/27/2000#
End With
With .Items
h = .AddItem("Bars A B")
.AddBar(h,"Task",#1/2/2001#,#1/6/2001#,"A")
.AddBar(h,"Task",#1/2/2001#,#1/6/2001#,"B")
.set_ItemBar(h,"B",exontrol.EXGANTTLib.ItemBarPropertyEnum.exBarColor,255)
h = .AddItem("Bars B A")
.AddBar(h,"Task",#1/2/2001#,#1/6/2001#,"B")
.AddBar(h,"Task",#1/2/2001#,#1/6/2001#,"A")
.set_ItemBar(h,"A",exontrol.EXGANTTLib.ItemBarPropertyEnum.exBarColor,255)
End With
End With
|
677
|
Is there any automatic way to change a property for all bars in the chart

With Exgantt1
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Items
.AddBar(.AddItem("Task 1"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 2"),"Task",#1/2/2001#,#1/4/2001#,"K2")
.AddBar(.AddItem("Task 3"),"Task",#1/2/2001#,#1/4/2001#,"K3")
.AddBar(.AddItem("Task 4"),"Task",#1/2/2001#,#1/4/2001#,"K4")
.set_ItemBar(0,"<*>",exontrol.EXGANTTLib.ItemBarPropertyEnum.exBarColor,255)
End With
End With
|
676
|
I have an EBN file how can I apply different colors to it, so no need to create a new one

Dim h,hC
With Exgantt1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.SelBackColor = .BackColor
.SelForeColor = .ForeColor
.HasLines = exontrol.EXGANTTLib.HierarchyLineEnum.exNoLine
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
hC = .InsertItem(h,Nothing,"Default")
.set_ItemBackColor32(hC,&H1000000)
.set_ItemHeight(.InsertItem(h,Nothing,""),6)
hC = .InsertItem(h,Nothing,"Light Green")
.set_ItemBackColor32(hC,&H100ff00)
.set_ItemHeight(.InsertItem(h,Nothing,""),6)
hC = .InsertItem(h,Nothing,"Dark Green")
.set_ItemBackColor32(hC,&H1007f00)
.set_ItemHeight(.InsertItem(h,Nothing,""),6)
hC = .InsertItem(h,Nothing,"Magenta")
.set_ItemBackColor32(hC,&H1ff7fff)
.set_ItemHeight(.InsertItem(h,Nothing,""),6)
hC = .InsertItem(h,Nothing,"Yellow")
.set_ItemBackColor32(hC,&H17fffff)
.set_ItemHeight(.InsertItem(h,Nothing,""),6)
.set_ExpandItem(h,True)
End With
End With
|
675
|
How can I remove all bars from the chart
With Exgantt1
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Items
.AddBar(.AddItem("Task 1"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 2"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 3"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 4"),"Task",#1/2/2001#,#1/4/2001#,"K2")
.ClearBars(0)
End With
End With
|
674
|
How can I change the color for all bars with a specified key

With Exgantt1
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Items
.AddBar(.AddItem("Task 1"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 2"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 3"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 4"),"Task",#1/2/2001#,#1/4/2001#,"K2")
.set_ItemBar(0,"K1",exontrol.EXGANTTLib.ItemBarPropertyEnum.exBarColor,255)
End With
End With
|
673
|
Is there any automatic way to change a property for all bars with a specified key

With Exgantt1
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Items
.AddBar(.AddItem("Task 1"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 2"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 3"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 4"),"Task",#1/2/2001#,#1/4/2001#,"K2")
.set_ItemBar(0,"K1",exontrol.EXGANTTLib.ItemBarPropertyEnum.exBarColor,255)
End With
End With
|
672
|
How can I remove all bars with specified key
With Exgantt1
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Items
.AddBar(.AddItem("Task 1"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 2"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 3"),"Task",#1/2/2001#,#1/4/2001#,"K1")
.AddBar(.AddItem("Task 4"),"Task",#1/2/2001#,#1/4/2001#,"K2")
.RemoveBar(0,"K1")
End With
End With
|
671
|
Is there any option to show gradient bars without using EBN technology

Dim h
With Exgantt1
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Chart.Bars.Item("Task")
.Color = Color.FromArgb(255,0,0)
.StartColor = Color.FromArgb(0,255,0)
.EndColor = Color.FromArgb(255,255,0)
.Pattern = exontrol.EXGANTTLib.PatternEnum.exPatternBox
End With
With .Items
h = .AddItem("Task")
.AddBar(h,"Task",#1/2/2001#,#1/5/2001#,"")
End With
End With
|
670
|
How can I disable the control's splitter so the user can't resize the list area

With Exgantt1
.OnResizeControl = exontrol.EXGANTTLib.OnResizeControlEnum.exDisableSplitter Or exontrol.EXGANTTLib.OnResizeControlEnum.exResizeChart
.Chart.set_PaneWidth(False,60)
End With
|
669
|
How can I disable the control's splitter so the user can't resize the chart area

With Exgantt1
.OnResizeControl = exontrol.EXGANTTLib.OnResizeControlEnum.exDisableSplitter
.Chart.set_PaneWidth(True,60)
End With
|
668
|
How can I define a bar that shows two colors, one up and one down, without using skin or EBN files

Dim h
With Exgantt1
.BeginUpdate()
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Chart.Bars.Add("A")
.Color = Color.FromArgb(255,0,0)
.Shape = exontrol.EXGANTTLib.ShapeBarEnum.exShapeSolidUp
.Pattern = exontrol.EXGANTTLib.PatternEnum.exPatternSolid
End With
With .Chart.Bars.Add("B")
.Color = Color.FromArgb(128,0,0)
.Shape = exontrol.EXGANTTLib.ShapeBarEnum.exShapeSolidDown
.Pattern = exontrol.EXGANTTLib.PatternEnum.exPatternSolid
End With
.Chart.Bars.Add("A%B").Shortcut = "AB"
With .Items
h = .AddItem("Task 1")
.AddBar(h,"AB",#1/2/2001#,#1/6/2001#,"K1")
.set_ItemBar(h,"K1",exontrol.EXGANTTLib.ItemBarPropertyEnum.exBarPercent,1)
End With
.EndUpdate()
End With
|
667
|
Does your control support RightToLeft property for RTL languages or right to left

Dim h
With Exgantt1
.BeginUpdate()
.ScrollBars = exontrol.EXGANTTLib.ScrollBarsEnum.exDisableBoth
.LinesAtRoot = exontrol.EXGANTTLib.LinesAtRootEnum.exLinesAtRoot
With .Columns.Add("P1")
.set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellHasCheckBox,True)
.PartialCheck = True
End With
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.set_ExpandItem(h,True)
End With
.RightToLeft = True
.EndUpdate()
End With
|
666
|
Is there any way to display the vertical scroll bar on the left side, as I want to align my data to the right

With Exgantt1
.BeginUpdate()
.ScrollBars = exontrol.EXGANTTLib.ScrollBarsEnum.exDisableBoth
With .Columns
.Add("C1")
.Add("C2")
.Add("C3")
.Add("C4")
.Add("C5")
.Add("C6")
.Add("C7")
.Add("C8")
End With
.RightToLeft = True
.EndUpdate()
End With
|
665
|
Can I display the cell's check box after the text

With Exgantt1
With .Columns.Add("Column")
.set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellHasCheckBox,True)
.set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellDrawPartsOrder,"caption,check")
End With
With .Items
.set_CellHasCheckBox(.AddItem("Caption 1"),0,True)
.set_CellHasCheckBox(.AddItem("Caption 2"),0,True)
End With
End With
|
664
|
Can I change the order of the parts in the cell, as checkbox after the text, and so on

Dim h
With Exgantt1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.Columns.Add("Column").set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellDrawPartsOrder,"caption,check,icon,icons,picture")
With .Items
h = .AddItem("Text")
.set_CellImage(h,0,1)
.set_CellHasCheckBox(h,0,True)
End With
End With
|
663
|
Can I have an image displayed after the text. Can I get that effect without using HTML content

Dim h
With Exgantt1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.Columns.Add("Column").set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellDrawPartsOrder,"caption,icon,check,icons,picture")
With .Items
h = .AddItem("Text")
.set_CellImage(h,0,1)
End With
End With
|
662
|
Is there any option to print the columns section on each page

Dim h1,h2
With Exgantt1
.BeginUpdate()
.Columns.Add("Col 1")
.Columns.Add("Col 2")
.MarkSearchColumn = False
.Chart.FirstVisibleDate = #1/1/2001#
.Chart.LevelCount = 2
With .Items
h1 = .AddItem("Col 1")
.set_CellCaption(h1,1,"Col 2")
.AddBar(h1,"Task",#1/2/2001#,#1/4/2001#,"K1")
h2 = .AddItem("Col 1")
.set_CellCaption(h2,1,"Col 2")
.AddBar(h2,"Task",#2/5/2001#,#2/7/2001#,"K2")
.AddLink("L1",h1,"K1",h2,"K2")
.set_Link("L1",exontrol.EXGANTTLib.LinkPropertyEnum.exLinkStartPos,0)
End With
.EndUpdate()
' Add 'exontrol.exprint.dll(ExPrint.dll)' reference to your project.
With New exontrol.EXPRINTLib.exprint()
.Options = "ColumnsOnEveryPage=-2"
.PrintExt = Exgantt1
.Preview()
End With
End With
|
661
|
Is there any option to print the columns section on each page

Dim h1,h2
With Exgantt1
.BeginUpdate()
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
.Chart.LevelCount = 2
With .Items
h1 = .AddItem("Task 1")
.AddBar(h1,"Task",#1/2/2001#,#1/4/2001#,"K1")
h2 = .AddItem("Task 2")
.AddBar(h2,"Task",#2/5/2001#,#2/7/2001#,"K2")
.AddLink("L1",h1,"K1",h2,"K2")
.set_Link("L1",exontrol.EXGANTTLib.LinkPropertyEnum.exLinkStartPos,0)
End With
.EndUpdate()
' Add 'exontrol.exprint.dll(ExPrint.dll)' reference to your project.
With New exontrol.EXPRINTLib.exprint()
.Options = "ColumnsOnEveryPage=1"
.PrintExt = Exgantt1
.Preview()
End With
End With
|
660
|
How do I print the control's content

Dim h1,h2
With Exgantt1
.BeginUpdate()
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Items
h1 = .AddItem("Task 1")
.AddBar(h1,"Task",#1/2/2001#,#1/4/2001#,"K1")
h2 = .AddItem("Task 2")
.AddBar(h2,"Task",#1/5/2001#,#1/7/2001#,"K2")
.AddLink("L1",h1,"K1",h2,"K2")
.set_Link("L1",exontrol.EXGANTTLib.LinkPropertyEnum.exLinkStartPos,0)
End With
.EndUpdate()
' Add 'exontrol.exprint.dll(ExPrint.dll)' reference to your project.
With New exontrol.EXPRINTLib.exprint()
.PrintExt = Exgantt1
.Preview()
End With
End With
|
659
|
How can I display the column using currency format and enlarge the font for certain values

With Exgantt1
With .Columns.Add("Currency")
.set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellCaptionFormat,1)
.FormatColumn = "len(value) ? ((0:=dbl(value)) < 10 ? '<fgcolor=808080><font ;7>' : '<b>') + currency(=:0)"
End With
With .Items
.AddItem("1.23")
.AddItem("2.34")
.AddItem("9.94")
.AddItem("11.94")
.AddItem("1000")
End With
End With
|
658
|
How can I highlight only parts of the cells

Dim h
With Exgantt1
With .Columns.Add("")
.set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellCaptionFormat,1)
.FormatColumn = "value replace 'hil' with '<fgcolor=FF0000><b>hil</b></fgcolor>'"
End With
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"Child 3")
.set_ExpandItem(h,True)
End With
End With
|
657
|
How can I get the number of occurrences of a specified string in the cell

Dim h
With Exgantt1
.Columns.Add("")
With .Columns.Add("occurrences")
.ComputedField = "lower(%0) count 'o'"
.FormatColumn = "'contains ' + value + ' of \'o\' chars'"
End With
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1 oooof the root")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"Child 3")
.set_ExpandItem(h,True)
End With
End With
|
656
|
How can I display dates in my format

With Exgantt1
With .Columns.Add("Date")
.set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellCaptionFormat,1)
.FormatColumn = "'<b>' + year(0:=date(value)) + '</b><fgcolor=808080><font ;6> (' + month(=:0) + ' - ' + day(=:0) +')'"
End With
With .Items
.AddItem(#1/21/2001#)
.AddItem(#2/22/2002#)
.AddItem(#3/13/2003#)
.AddItem(#4/24/2004#)
End With
End With
|
655
|
How can I display dates in short format

With Exgantt1
.Columns.Add("Date").FormatColumn = "shortdate(value)"
With .Items
.AddItem(#1/1/2001#)
.AddItem(#2/2/2002#)
.AddItem(#3/3/2003#)
.AddItem(#4/4/2004#)
End With
End With
|
654
|
How can I display dates in long format

With Exgantt1
.Columns.Add("Date").FormatColumn = "longdate(value)"
With .Items
.AddItem(#1/1/2001#)
.AddItem(#2/2/2002#)
.AddItem(#3/3/2003#)
.AddItem(#4/4/2004#)
End With
End With
|
653
|
How can I display only the right part of the cell

Dim h
With Exgantt1
.Columns.Add("")
With .Columns.Add("Right")
.ComputedField = "%0 right 2"
.FormatColumn = "'""' + value + '""'"
End With
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"SChild 3")
.set_ExpandItem(h,True)
End With
End With
|
652
|
How can I display only the left part of the cell

Dim h
With Exgantt1
.Columns.Add("")
.Columns.Add("Left").ComputedField = "%0 left 2"
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"SChild 3")
.set_ExpandItem(h,True)
End With
End With
|
651
|
How can I display true or false instead 0 and -1

With Exgantt1
.Columns.Add("Boolean").FormatColumn = "value != 0 ? 'true' : 'false'"
With .Items
.AddItem(True)
.AddItem(False)
.AddItem(True)
.AddItem(0)
.AddItem(1)
End With
End With
|
650
|
How can I display icons or images instead numbers

With Exgantt1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
With .Columns.Add("Icons")
.set_Def(exontrol.EXGANTTLib.DefColumnEnum.exCellCaptionFormat,1)
.FormatColumn = "'The cell displays the icon <img>'+value+'</img> instead ' + value"
End With
With .Items
.AddItem(1)
.AddItem(2)
.AddItem(3)
End With
End With
|
649
|
How can I display the column using currency

With Exgantt1
.Columns.Add("Currency").FormatColumn = "currency(dbl(value))"
With .Items
.AddItem("1.23")
.AddItem("2.34")
.AddItem("0")
.AddItem(5)
.AddItem("10000.99")
End With
End With
|
648
|
How can I display the currency only for not empty cells

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Currency").ComputedField = "len(%0) ? currency(dbl(%0)) : ''"
With .Items
.AddItem("1.23")
.AddItem("2.34")
.AddItem("0")
.set_ItemBackColor(.AddItem(),Color.FromArgb(255,128,128))
.AddItem("10000.99")
End With
End With
|
647
|
Is there a function to display the number of days between two date including the number of hours

Dim h
With Exgantt1
.Columns.Add("Start").Width = 32
.Columns.Add("End")
.Columns.Add("Duration").ComputedField = "2:=((1:=int(0:= date(%1)-date(%0))) = 0 ? '' : str(=:1) + ' day(s)') + ( 3:=round(24*(=:0-floor(=:0))) ? (len(=:2) ? ' and ' : " & _
"'') + =:3 + ' hour(s)' : '' )"
With .Items
h = .AddItem(#1/11/2001#)
.set_CellCaption(h,1,#1/14/2001#)
h = .AddItem(#2/22/2002 0:00:00 PM#)
.set_CellCaption(h,1,#3/14/2002 1:00:00 PM#)
h = .AddItem(#3/13/2003#)
.set_CellCaption(h,1,#4/11/2003 11:00:00 AM#)
End With
End With
|
646
|
Is there a function to display the number of days between two date including the number of hours

Dim h
With Exgantt1
.Columns.Add("Start")
.Columns.Add("End")
.Columns.Add("Duration").ComputedField = """D "" + int(date(%1)-date(%0)) + "" H "" + round(24*(date(%1)-date(%0) - floor(date(%1)-date(%0))))"
With .Items
h = .AddItem(#1/11/2001#)
.set_CellCaption(h,1,#1/14/2001 11:00:00 PM#)
h = .AddItem(#2/22/2002 0:00:00 PM#)
.set_CellCaption(h,1,#3/14/2002 1:00:00 PM#)
h = .AddItem(#3/13/2003#)
.set_CellCaption(h,1,#4/11/2003 11:00:00 AM#)
End With
End With
|
645
|
How can I display the number of days between two dates

Dim h
With Exgantt1
.Columns.Add("Start")
.Columns.Add("End")
.Columns.Add("Duration").ComputedField = "(date(%1)-date(%0)) + ' days'"
With .Items
h = .AddItem(#1/11/2001#)
.set_CellCaption(h,1,#1/14/2001#)
h = .AddItem(#2/22/2002#)
.set_CellCaption(h,1,#3/14/2002#)
h = .AddItem(#3/13/2003#)
.set_CellCaption(h,1,#4/11/2003#)
End With
End With
|
644
|
How can I get second part of the date

With Exgantt1
.Columns.Add("Date")
.Columns.Add("Second").ComputedField = "sec(date(%0))"
With .Items
.AddItem(#1/11/2001 10:10:00 AM#)
.AddItem(#2/22/2002 11:01:22 AM#)
.AddItem(#3/13/2003 0:23:01 PM#)
.AddItem(#4/14/2004 1:11:59 PM#)
End With
End With
|
643
|
How can I get minute part of the date

With Exgantt1
.Columns.Add("Date")
.Columns.Add("Minute").ComputedField = "min(date(%0))"
With .Items
.AddItem(#1/11/2001 10:10:00 AM#)
.AddItem(#2/22/2002 11:01:00 AM#)
.AddItem(#3/13/2003 0:23:00 PM#)
.AddItem(#4/14/2004 1:11:00 PM#)
End With
End With
|
642
|
How can I check the hour part only so I know it was afternoon

With Exgantt1
.ConditionalFormats.Add("hour(%0)>=12").Bold = True
.Columns.Add("Date")
.Columns.Add("Hour").ComputedField = "hour(%0)"
With .Items
.AddItem(#1/11/2001 10:00:00 AM#)
.AddItem(#2/22/2002 11:00:00 AM#)
.AddItem(#3/13/2003 0:00:00 PM#)
.AddItem(#4/14/2004 1:00:00 PM#)
End With
End With
|
641
|
What about a function to get the day in the week, or days since Sunday

With Exgantt1
.Columns.Add("Date")
.Columns.Add("WeekDay").ComputedField = "weekday(%0)"
With .Items
.AddItem(#1/11/2001 10:00:00 AM#)
.AddItem(#2/22/2002 11:00:00 AM#)
.AddItem(#3/13/2003 0:00:00 PM#)
.AddItem(#4/14/2004 1:00:00 PM#)
End With
End With
|
640
|
Is there any function to get the day of the year or number of days since January 1st

With Exgantt1
.Columns.Add("Date")
.Columns.Add("Day since January 1st").ComputedField = "yearday(%0)"
With .Items
.AddItem(#1/11/2001 10:00:00 AM#)
.AddItem(#2/22/2002 11:00:00 AM#)
.AddItem(#3/13/2003 0:00:00 PM#)
.AddItem(#4/14/2004 1:00:00 PM#)
End With
End With
|
639
|
How can I display only the day of the date

With Exgantt1
.Columns.Add("Date")
.Columns.Add("Day").ComputedField = "day(%0)"
With .Items
.AddItem(#1/11/2001 10:00:00 AM#)
.AddItem(#2/22/2002 11:00:00 AM#)
.AddItem(#3/13/2003 0:00:00 PM#)
.AddItem(#4/14/2004 1:00:00 PM#)
End With
End With
|
638
|
How can I display only the month of the date

With Exgantt1
.Columns.Add("Date")
.Columns.Add("Month").ComputedField = "month(%0)"
With .Items
.AddItem(#1/1/2001 10:00:00 AM#)
.AddItem(#2/2/2002 11:00:00 AM#)
.AddItem(#3/3/2003 0:00:00 PM#)
.AddItem(#4/4/2004 1:00:00 PM#)
End With
End With
|
637
|
How can I get only the year part from a date expression

With Exgantt1
.Columns.Add("Date")
.Columns.Add("Year").ComputedField = "year(%0)"
With .Items
.AddItem(#1/1/2001 10:00:00 AM#)
.AddItem(#2/2/2002 11:00:00 AM#)
.AddItem(#3/3/2003 0:00:00 PM#)
.AddItem(#4/4/2004 1:00:00 PM#)
End With
End With
|
636
|
Can I convert the expression to date

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Date").ComputedField = "date(dbl(%0))"
With .Items
.AddItem("-1.98")
.AddItem("30000.99")
.AddItem("3561.23")
.AddItem("1232.34")
End With
End With
|
635
|
Can I convert the expression to a number, double or float

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Number + 2").ComputedField = "dbl(%0)+2"
With .Items
.AddItem("-1.98")
.AddItem("0.99")
.AddItem("1.23")
.AddItem("2.34")
End With
End With
|
634
|
How can I display dates in long format

With Exgantt1
.Columns.Add("Date")
.Columns.Add("LongFormat").ComputedField = "longdate(%0)"
With .Items
.AddItem(#1/1/2001 10:00:00 AM#)
.AddItem(#2/2/2002 11:00:00 AM#)
.AddItem(#3/3/2003 0:00:00 PM#)
.AddItem(#4/4/2004 1:00:00 PM#)
End With
End With
|
633
|
How can I display dates in short format

With Exgantt1
.Columns.Add("Date")
.Columns.Add("ShortFormat").ComputedField = "shortdate(%0)"
With .Items
.AddItem(#1/1/2001 10:00:00 AM#)
.AddItem(#2/2/2002 11:00:00 AM#)
.AddItem(#3/3/2003 0:00:00 PM#)
.AddItem(#4/4/2004 1:00:00 PM#)
End With
End With
|
632
|
How can I display the time only of a date expression

With Exgantt1
.Columns.Add("Date")
.Columns.Add("Time").ComputedField = "'time is:' + time(date(%0))"
With .Items
.AddItem(#1/1/2001 10:00:00 AM#)
.AddItem(#2/2/2002 11:00:00 AM#)
.AddItem(#3/3/2003 0:00:00 PM#)
.AddItem(#4/4/2004 1:00:00 PM#)
End With
End With
|
631
|
Is there any function to display currencies, or money formatted as in the control panel

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Currency").ComputedField = "currency(dbl(%0))"
With .Items
.AddItem("1.23")
.AddItem("2.34")
.AddItem("10000.99")
End With
End With
|
630
|
How can I convert the expression to a string so I can look into the date string expression for month's name

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Str").ComputedField = "str(%0) + ' AA'"
With .Items
.AddItem("-1.98")
.AddItem("0.99")
.AddItem("1.23")
.AddItem("2.34")
End With
End With
|
629
|
Can I display the absolute value or positive part of the number

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Abs").ComputedField = "abs(%0)"
With .Items
.AddItem("-1.98")
.AddItem("0.99")
.AddItem("1.23")
.AddItem("2.34")
End With
End With
|
628
|
Is there any function to get largest number with no fraction part that is not greater than the value

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Floor").ComputedField = "floor(%0)"
With .Items
.AddItem("-1.98")
.AddItem("0.99")
.AddItem("1.23")
.AddItem("2.34")
End With
End With
|
627
|
Is there any function to round the values base on the .5 value

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Round").ComputedField = "round(%0)"
With .Items
.AddItem("-1.98")
.AddItem("0.99")
.AddItem("1.23")
.AddItem("2.34")
End With
End With
|
626
|
How can I get or display the integer part of the cell

With Exgantt1
.Columns.Add("Number")
.Columns.Add("Int").ComputedField = "int(%0)"
With .Items
.AddItem("-1.98")
.AddItem("0.99")
.AddItem("1.23")
.AddItem("2.34")
End With
End With
|
625
|
How can I display names as proper ( first leter of the word must be in uppercase, and the rest in lowercase )

Dim h
With Exgantt1
.Columns.Add("").ComputedField = "proper(%0)"
With .Items
h = .AddItem("root")
.InsertItem(h,Nothing,"child child")
.InsertItem(h,Nothing,"child child")
.InsertItem(h,Nothing,"child child")
.set_ExpandItem(h,True)
End With
End With
|
624
|
Is there any option to display cells in uppercase

Dim h
With Exgantt1
.Columns.Add("").ComputedField = "upper(%0)"
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"Chld 3")
.set_ExpandItem(h,True)
End With
End With
|
623
|
Is there any option to display cells in lowercase

Dim h
With Exgantt1
.Columns.Add("").ComputedField = "lower(%0)"
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"Chld 3")
.set_ExpandItem(h,True)
End With
End With
|
622
|
How can I mark the cells that has a specified type, ie strings only

Dim h
With Exgantt1
.ConditionalFormats.Add("type(%0) = 8").ForeColor = Color.FromArgb(255,0,0)
.Columns.Add("")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,2)
.InsertItem(h,Nothing,"Chld 3")
.set_ExpandItem(h,True)
End With
End With
|
621
|
How can I bold the items that contains data or those who displays empty strings

Dim h,hC
With Exgantt1
.ConditionalFormats.Add("not len(%1)=0").Bold = True
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
hC = .InsertItem(h,Nothing,"Child 2")
.set_CellCaption(hC,1,"1")
.InsertItem(h,Nothing,"Child 3")
.set_ExpandItem(h,True)
End With
End With
|
620
|
Can I change the background color for items or cells that contains a specified string

Dim h
With Exgantt1
.ConditionalFormats.Add("%0 contains 'hi'").BackColor = Color.FromArgb(255,0,0)
.Columns.Add("")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"Chld 3")
.set_ExpandItem(h,True)
End With
End With
|
619
|
Is there any option to change the fore color for cells or items that ends with a specified string

Dim h
With Exgantt1
.ConditionalFormats.Add("%0 endwith '22'").ForeColor = Color.FromArgb(255,0,0)
.Columns.Add("")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 1.22")
.InsertItem(h,Nothing,"Child 2.22")
.set_ExpandItem(h,True)
End With
End With
|
618
|
How can I highlight the cells or items that starts with a specified string

Dim h
With Exgantt1
.ConditionalFormats.Add("%0 startwith 'C'").Underline = True
.Columns.Add("")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.InsertItem(h,Nothing,"SChild 3")
.set_ExpandItem(h,True)
End With
End With
|
617
|
How can I change the background color or the visual appearance using ebn for a particular column

With Exgantt1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
With .Columns
.Add("Column 1")
.Add("Column 2").set_Def(exontrol.EXGANTTLib.DefColumnEnum.exHeaderBackColor,16777216)
.Add("Column 3").set_Def(exontrol.EXGANTTLib.DefColumnEnum.exHeaderBackColor,16777471)
.Add("Column 4")
End With
End With
|
616
|
How can I change the background color for a particular column

With Exgantt1
With .Columns
.Add("Column 1")
.Add("Column 2").set_Def(exontrol.EXGANTTLib.DefColumnEnum.exHeaderBackColor,8439039)
.Add("Column 3")
End With
End With
|
615
|
Is it possible to define level in terms of just increasing numbers (not a Date)

With Exgantt1
With .Chart
.set_PaneWidth(False,32)
.UnitWidth = 32
.FirstVisibleDate = 1000
.get_Level(0).Label = "<%i%>"
End With
End With
|
614
|
How can I hide the non-working units ( days or hours )

With Exgantt1
.BeginUpdate()
With .Chart
.set_PaneWidth(False,0)
.LevelCount = 2
With .get_Level(0)
.Label = "<%dddd%>"
.Alignment = exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment
End With
.get_Level(1).Label = 65536
.NonworkingHours = 16773375
.ShowNonworkingUnits = False
End With
.EndUpdate()
End With
|
613
|
Is there a way to have the display show the word "Noon" instead "12:00 PM" in the chart's header/levels

With Exgantt1
With .Chart
.set_PaneWidth(False,0)
.FirstVisibleDate = #1/1/2001 10:00:00 AM#
.LevelCount = 3
With .get_Level(0)
.Label = "<b><%mmm%> <%d%>, <%yyyy%></b>"
.Alignment = exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment
.Unit = exontrol.EXGANTTLib.UnitEnum.exDay
End With
With .get_Level(1)
.Label = "<%h%>:00 <%AM/PM%>"
.Alignment = exontrol.EXGANTTLib.AlignmentEnum.CenterAlignment
.Unit = exontrol.EXGANTTLib.UnitEnum.exHour
.DrawTickLines = True
.DrawGridLines = True
.set_ReplaceLabel("12:00 PM","<fgcolor=0000FF><b>Noon</b></fgcolor>")
End With
With .get_Level(2)
.Label = ""
.Unit = exontrol.EXGANTTLib.UnitEnum.exMinute
.Count = 15
End With
End With
End With
|
612
|
How can I change the selection background color in the chart area

With Exgantt1
.Chart.FirstVisibleDate = #1/1/2001#
.Chart.SelBackColor = Color.FromArgb(255,0,0)
.Columns.Add("Column")
With .Items
.AddBar(.AddItem("Item 1"),"Task",#1/2/2001#,#1/4/2001#)
.AddBar(.AddItem("Item 1"),"Task",#1/6/2001#,#1/14/2001#)
.set_SelectItem(.FirstVisibleItem,True)
End With
End With
|
611
|
How can I change the selection background color in the chart area

With Exgantt1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.Chart.FirstVisibleDate = #1/1/2001#
.Chart.SelBackColor32 = &H1000000
.Columns.Add("Column")
With .Items
.AddBar(.AddItem("Item 1"),"Task",#1/2/2001#,#1/4/2001#)
.AddBar(.AddItem("Item 1"),"Task",#1/6/2001#,#1/14/2001#)
.set_SelectItem(.FirstVisibleItem,True)
End With
End With
|
610
|
Is there any way to extend the selection on the chart

With Exgantt1
.Chart.FirstVisibleDate = #1/1/2001#
.Chart.SelBackColor = Exgantt1.SelBackColor
.Columns.Add("Column")
With .Items
.AddBar(.AddItem("Item 1"),"Task",#1/2/2001#,#1/4/2001#)
.AddBar(.AddItem("Item 1"),"Task",#1/6/2001#,#1/14/2001#)
.set_SelectItem(.FirstVisibleItem,True)
End With
End With
|
609
|
How can I display the column's header using multiple lines

With Exgantt1
.HeaderHeight = 128
.HeaderSingleLine = False
.Columns.Add("This is just a column that should break the header.").Width = 32
.Columns.Add("This is just another column that should break the header.")
End With
|
608
|
How can change the width, transparency, style, visual appearance ( EBN), of the vertical bar that shows the current date-time

With Exgantt1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
With .Chart
.LevelCount = 2
.get_Level(0).Label = 1048576
With .get_Level(1)
.Label = "<%ss%>"
.Count = 15
End With
.MarkNowColor32 = &H1000000
.MarkNowWidth = 6
.MarkNowTransparent = 50
End With
.Columns.Add("Tasks")
With .Items
.AddBar(.AddItem("Item 1"),"Task",#1/1/2008#,#1/1/2018#)
End With
End With
|
607
|
How can change the width, style, visual appearance ( EBN), of the vertical bar that shows the current time

With Exgantt1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
With .Chart
.LevelCount = 2
.get_Level(0).Label = 1048576
With .get_Level(1)
.Label = "<%ss%>"
.Count = 15
End With
.MarkNowColor32 = &H1000000
.MarkNowWidth = 6
End With
.Columns.Add("Tasks")
With .Items
.AddBar(.AddItem("Item 1"),"Task",#1/1/2008#,#1/1/2018#)
End With
End With
|
606
|
How can I show a vertical bar that indicates the current time

With Exgantt1
With .Chart
.LevelCount = 2
.get_Level(0).Label = 1048576
With .get_Level(1)
.Label = "<%ss%>"
.Count = 15
End With
.MarkNowColor = Color.FromArgb(0,0,255)
.MarkNowWidth = 7
End With
.Columns.Add("Tasks")
With .Items
.AddBar(.AddItem("Item 1"),"Task",#1/1/2008#,#1/1/2018#)
End With
End With
|
605
|
How can I show semi-transparent the vertical bar that indicates the current time

With Exgantt1
With .Chart
.LevelCount = 2
.get_Level(0).Label = 1048576
With .get_Level(1)
.Label = "<%ss%>"
.Count = 15
End With
.MarkNowColor = Color.FromArgb(0,0,255)
.MarkNowWidth = 7
.MarkNowTransparent = 50
End With
.Columns.Add("Tasks")
With .Items
.AddBar(.AddItem("Item 1"),"Task",#1/1/2008#,#1/1/2018#)
End With
End With
|
604
|
Is there any way to highlight or show a vertical bar that indicates the current time, from 15 to 15 seconds

With Exgantt1
.Chart.LevelCount = 2
.Chart.get_Level(0).Label = 1048576
With .Chart.get_Level(1)
.Label = "<%ss%>"
.Count = 15
End With
.Chart.MarkNowColor = Color.FromArgb(0,0,255)
.Chart.MarkNowCount = 15
.Chart.MarkNowWidth = 3
End With
|
603
|
Is there any way to highlight or show a vertical bar that indicates the current time, from minute to minute, hour and so on

With Exgantt1
With .Chart
.UnitWidth = 48
.LevelCount = 1
.get_Level(0).Label = 1048576
.MarkNowColor = Color.FromArgb(255,0,0)
.MarkNowUnit = exontrol.EXGANTTLib.UnitEnum.exMinute
.MarkNowWidth = .UnitWidth
End With
End With
|
602
|
Is there any way to highlight or show a vertical bar that indicates the current time

With Exgantt1
.Chart.LevelCount = 2
.Chart.get_Level(0).Label = 1048576
With .Chart.get_Level(1)
.Label = "<%ss%>"
.Count = 15
End With
.Chart.MarkNowColor = Color.FromArgb(255,0,0)
End With
|
601
|
Is there a way of making a bar flash on the screen
Dim h
With Exgantt1
.Columns.Add("Task")
.Chart.FirstVisibleDate = #1/1/2001#
With .Items
h = .AddItem("Flashy task")
.AddBar(h,"Task",#1/2/2001#,#1/6/2001#,"K1")
.set_ItemBar(h,"K1",exontrol.EXGANTTLib.ItemBarPropertyEnum.exBarTransparent,80)
End With
End With
|